home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-15 / loram100.zip / LORAM.DOC < prev    next >
Text File  |  1992-11-27  |  4KB  |  103 lines

  1.  
  2.  
  3.  
  4.      LORAM V1.00 Copyright (c) 1992 Copy Con Incorporated            Page 1
  5.  
  6.  
  7.      TO PRINT THIS FILE, TYPE "COPY LORAM.DOC PRN" AT THE DOS PROMPT.
  8.  
  9.  
  10.      OVERVIEW
  11.      --------
  12.      LORAM is a utility that lets you see how programs run under low RAM
  13.      conditions. LORAM lets you specify an amount of RAM to leave free, or
  14.      an amount of RAM to take away, and the amount can be specified in
  15.      decimal, hex, or octal notation. LORAM also returns the errorlevel of
  16.      the specified program. LORAM is of great use in testing new programs,
  17.      especially those that allocate memory as they run.
  18.  
  19.  
  20.      DISCLAIMER
  21.      ----------
  22.      LORAM is distributed on an "AS IS" basis without warranty, expressed
  23.      or implied. Considerable testing effort has been expended, but the
  24.      user is advised to check the program's suitability before relying on
  25.      it. The user assumes full risk as to the results of using this
  26.      program. In no event shall the author be liable for any incidental or
  27.      consequential damages arising from the use, or inability to use this
  28.      program.
  29.  
  30.  
  31.      REGISTRATION
  32.      ------------
  33.      LORAM is freely distributable and fully functional, and may be used
  34.      for a 30-day trial period. If you plan to continue using LORAM, you
  35.      are obligated to pay the modest registration fee of $10. This one-time
  36.      fee allows you unlimited use of this and all future versions of LORAM.
  37.  
  38.      All registration information is contained in the LORAM.REG file. If
  39.      that file is missing, register by sending a check or money order for
  40.      $10 in U.S. dollars, drawn on a U.S. bank, to:
  41.  
  42.         Copy Con Incorporated
  43.         PO Box 23255
  44.         Baltimore MD 21203-5255
  45.  
  46.      We thank you for your support.
  47.  
  48.  
  49.  
  50.      LORAM V1.00 Copyright (c) 1992 Copy Con Incorporated            Page 2
  51.  
  52.  
  53.      OPERATION
  54.      ---------
  55.      LORAM is activated from the command line, using the format
  56.  
  57.         LORAM [-]memsize[k] [/p] program [program options]
  58.  
  59.      If memsize is preceded with a '-' (minus sign), LORAM will subtract
  60.      memsize from the current RAM amount before running the program; other-
  61.      wise, LORAM will set the RAM size to memsize (assuming that memsize is
  62.      less than the amount of free RAM) before running the program.
  63.  
  64.      Memsize can be specified in hexadecimal by preceding it with '0x'
  65.      (ex. 0xFEC0), or in octal by preceding it with '0' (ex. 077740). If
  66.      directly followed with a 'k', memsize will be read as kilobytes
  67.      instead of bytes (ex. 256k = 262144). The /p option pauses LORAM
  68.      at the settings screen before running the program.
  69.  
  70.      The program to be run must be a .COM or .EXE file. LORAM will search
  71.      the current directory and path for the program if no drive and dir
  72.      info is given. There is no limit to the number of options passed to
  73.      the program.
  74.  
  75.  
  76.      EXAMPLES
  77.      --------
  78.      LORAM 256k newprog
  79.        sets the RAM size to 256k, then runs the program NEWPROG.
  80.  
  81.      LORAM -0xC000 newprog /t
  82.        subtracts 49152 bytes (C000 hex) from the current RAM size, then
  83.        runs NEWPROG with the /t option.
  84.  
  85.      LORAM 0200k /p d:\utils\sysid
  86.        sets the RAM size to 128k (200k octal), and waits for a keypress
  87.        before running SYSID, which is on the D: drive in the UTILS dir.
  88.  
  89.  
  90.      CORRESPONDENCE
  91.      --------------
  92.      If you have questions, comments, suggestions, bug reports, et cetera,
  93.      feel free to contact us by one of the following methods:
  94.  
  95.      1: By modem at The Programmer's Corner (301-596-7692 or 410-995-6873).
  96.         Send a message to user number 3000, and check back in a couple of
  97.         work days for a reply.
  98.  
  99.      2: By U.S. Mail at the address given on the first page. If you would
  100.         like a reply, please include a self-addressed, stamped envelope.
  101.  
  102.      We look forward to hearing from you.
  103.